Skip to content
This repository has been archived by the owner on Jun 20, 2019. It is now read-only.

Commit

Permalink
Fixed docs, bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Karl committed Nov 10, 2014
1 parent 9c3888a commit 48ded16
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2013 Matt Karl
Copyright (c) 2014 Matt Karl

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ docs.helpers=${docs.themedir}/path.js
git=git
git.docs=gh-pages
git.master=master
version=1.0.1
version=1.1.1
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "canteen/html5",
"description" : "Create dynamic, valid HTML5 markup with a simple an intuitive PHP API",
"version" : "1.1.0",
"version" : "1.1.1",
"type": "library",
"keywords": ["html5", "markup", "document", "html", "tags"],
"license": "MIT",
Expand Down
7 changes: 3 additions & 4 deletions src/Fragment.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
* Represents a set of HTML tags without a wrapper.
* Do not initiate this class directly, use the `html()` function:
*
* $div = html('container');
* $div = html('fragment');
*
* @class UntaggedContainer
* @extends Node
* @class Fragment
* @extends NodeContainer
* @constructor
* @param {Node|Array} [children=null] The collection of children or single child
*/
Expand All @@ -35,7 +35,6 @@ public function __toString()
{
$buffer .= $child->__toString();
}

return $buffer;
}
}
Expand Down

0 comments on commit 48ded16

Please sign in to comment.