Fixed docs, bumped version

This commit is contained in:
Matt Karl 2014-11-10 17:42:23 -05:00
parent 9c3888aef3
commit 48ded16c2f
4 changed files with 6 additions and 7 deletions

View File

@ -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

View File

@ -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

View File

@ -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",

View File

@ -9,10 +9,10 @@ namespace Canteen\HTML5
* 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
*/
@ -35,7 +35,6 @@ namespace Canteen\HTML5
{
$buffer .= $child->__toString();
}
return $buffer;
}
}