Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump codespell from 1.14.0 to 1.15.0 #4934

Merged
merged 1 commit into from
Jun 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contribs/gmf/src/permalink/Permalink.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ const ParamPrefix = {
*
* - `rl_features` (string)
* This parameter defines vector features to add to the map upon
* initializaiton. In addition, if the application includes the
* initializaton. In addition, if the application includes the
* draw tool, the features added can be modified. The draw tool
* can also be used to add new features, which are automatically
* added in the url.
Expand Down
2 changes: 1 addition & 1 deletion contribs/gmf/src/search/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import SimpleGeometry from 'ol/geom/SimpleGeometry.js';
/**
* @typedef {Object} gmfSearchAction
* @property {string} action The action
* @property {string} title The titile
* @property {string} title The title
*/


Expand Down
2 changes: 1 addition & 1 deletion docs/guidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ referenced by their names in HTML pages and templates. So it is required to
prevent the compiler from renaming these properties.

The way to do that is to add the right tag on each variable, function and class.
- `@private`: With a final underscore (`this.my_private_variable_`) tell the compilier to rename it with a
- `@private`: With a final underscore (`this.my_private_variable_`) tell the compiler to rename it with a
name not understainable outside of the current file.
- And nothing, without final underscore, if the element is used freely in the code, but never in the html.

Expand Down
2 changes: 1 addition & 1 deletion src/map/LayerHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const REFRESH_PARAM = 'random';
* @param {string} sourceFormat Image format, for example 'image/png'.
* @param {string=} opt_serverType Type of the server ("mapserver",
* "geoserver", "qgisserver", …).
* @param {string=} opt_time time parameter for layer queryable by time/periode
* @param {string=} opt_time time parameter for layer queryable by time/period
* @param {Object<string, string>=} opt_params WMS parameters.
* @param {string=} opt_crossOrigin crossOrigin.
* @param {Object=} opt_customSourceOptions Some initial options.
Expand Down
2 changes: 1 addition & 1 deletion src/offline/ServiceManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class ServiceManager {

/**
* Ask the provided service to save the data to an offline purpose
* @param {import("ol/extent.js").Extent} extent The extent to dowload.
* @param {import("ol/extent.js").Extent} extent The extent to download.
* @param {import("ol/Map").default} map The map to work on.
*/
save(extent, map) {
Expand Down
2 changes: 1 addition & 1 deletion src/query/Querent.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ import olSourceImageWMS from 'ol/source/ImageWMS.js';
* - `remove`: newly queried features are removed from the existing ones
* @property {import("ol/coordinate.js").Coordinate} [coordinate] The coordinate to issue the requests with,
* which can end up with either WMS or WFS requests.
* @property {Array<import('ngeo/datasource/DataSource.js').default>} [dataSources] ist of data sources to
* @property {Array<import('ngeo/datasource/DataSource.js').default>} [dataSources] list of data sources to
* query. Only those that meet the requirements will actually be queried. The querent service requires
* either the `dataSources` or `queryableDataSources` property to be set.
* @property {import("ol/extent.js").Extent} [extent] The extent to issue the requests with, which can end up
Expand Down
2 changes: 1 addition & 1 deletion test/spec/data/wmtsCapabilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default '<?xml version="1.0" encoding="UTF-8"?>' +
'<Contents>' +
'<Layer>' +
'<ows:Title>New Zealand Earthquakes</ows:Title>' +
'<ows:Abstract>Historical earthquake data, accessed via the [GeoNet WFS feed](http://info.geonet.org.nz/display/appdata/Advanced+Queries). The data has been filtered to only include quakes in proximity to New Zealand with an `eventtype` of "Earthquake" or "none" per the [GeoNet catalogue](http://info.geonet.org.nz/display/appdata/Catalogue+Output). Most fields have been removed. Please also note the excluded data per this [GeoNet page](http://info.geonet.org.nz/display/appdata/The+Gap). We acknowledge the New Zealand GeoNet project and its sponsors EQC, GNS Science and LINZ, for providing data used in this layer</ows:Abstract>' +
'<ows:Abstract>Historical earthquake data, accessed via the [GeoNet WFS feed](http://info.geonet.org.nz/display/appdata/Advanced+Queries). The data has been filtered to only include quakes in proximity to New Zealand with an `eventtype` of "Earthquake" or "none" per the [GeoNet catalog](http://info.geonet.org.nz/display/appdata/Catalog+Output). Most fields have been removed. Please also note the excluded data per this [GeoNet page](http://info.geonet.org.nz/display/appdata/The+Gap). We acknowledge the New Zealand GeoNet project and its sponsors EQC, GNS Science and LINES, for providing data used in this layer</ows:Abstract>' +
'<ows:Identifier>layer-7328</ows:Identifier>' +
'<ows:BoundingBox crs="urn:ogc:def:crs:EPSG::3857">' +
'<ows:LowerCorner>-20037508.342789 -6406581.708337</ows:LowerCorner>' +
Expand Down