Skip to content

Commit

Permalink
Doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
robneu committed Feb 19, 2015
1 parent 5db8566 commit 295296c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions cfs-markdown.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
* GitHub Branch: master
*/

// Exit if accessed directly.
// Prevent direct access.
defined( 'ABSPATH' ) or exit;

// Define the plugin folder path.
// Define the plugin directory path.
if ( ! defined( 'CFSMD_ADDON_DIR' ) ) {
define( 'CFSMD_ADDON_DIR', plugin_dir_path( __FILE__ ) );
}
Expand Down
4 changes: 2 additions & 2 deletions includes/class-markdown.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
/**
* CFS Markdown add-on field type class.
*
* @package ExamplePlugin
* @package CFSMarkdown
* @author Robert Neu
* @copyright Copyright (c) 2015, Robert Neu
* @license GPL-2.0+
* @since 0.0.1
*/

// Exit if accessed directly.
// Prevent direct access.
defined( 'ABSPATH' ) or exit;

class CFS_Markdown extends cfs_textarea {
Expand Down
4 changes: 2 additions & 2 deletions includes/class-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
/**
* CFS Markdown add-on main plugin class.
*
* @package ExamplePlugin
* @package CFSMarkdown
* @author Robert Neu
* @copyright Copyright (c) 2015, Robert Neu
* @license GPL-2.0+
* @since 0.0.1
*/

// Exit if accessed directly.
// Prevent direct access.
defined( 'ABSPATH' ) or exit;

/**
Expand Down

0 comments on commit 295296c

Please sign in to comment.