impliment -> implement typo fixes

This commit is contained in:
Vladimir Agafonkin 2015-03-06 12:48:46 +02:00
parent f25f97a381
commit 68308085fd

View File

@ -5888,7 +5888,7 @@ MyEventedClass = L.Class.extend({
<h2 id="layer">Layer</h2>
<p>The base class for all Leaflet layers that impliments basic shared methods and functionality. Can be extended to create custom layers by extending <code>L.Layer</code> and implimenting the <code>onAdd</code> and <code>onRemove</code> methods.</p>
<p>The base class for all Leaflet layers that implements basic shared methods and functionality. Can be extended to create custom layers by extending <code>L.Layer</code> and implementing the <code>onAdd</code> and <code>onRemove</code> methods.</p>
<h3>Implementing Custom Layers</h3>
@ -5902,7 +5902,7 @@ MyEventedClass = L.Class.extend({
<h3>Methods</h3>
<p>Every layer should extend from <code>L.Layer</code> and impliment the following methods:</p>
<p>Every layer should extend from <code>L.Layer</code> and implement the following methods:</p>
<table data-id="layer">
<tr>
@ -6044,7 +6044,7 @@ var myLayer = new MyCustomLayer(latlng).addTo(map);
<h2 id="control">Control</h2>
<p>Controls represents a UI element in one of the corners of the map. Implemented by <a href="#control-zoom">zoom</a>, <a href="#control-attribution">attribution</a>, <a href="#control-scale">scale</a> and <a href="#control-layers">layers</a> controls. Can be used to create custom controls by extending <code> L.Control</code> and implimenting the <code>onAdd</code> and <code>onRemove</code> methods.</p>
<p>Controls represents a UI element in one of the corners of the map. Implemented by <a href="#control-zoom">zoom</a>, <a href="#control-attribution">attribution</a>, <a href="#control-scale">scale</a> and <a href="#control-layers">layers</a> controls. Can be used to create custom controls by extending <code> L.Control</code> and implementing the <code>onAdd</code> and <code>onRemove</code> methods.</p>
<h3>Methods</h3>