diff --git a/src/ol/proj.js b/src/ol/proj.js index 7a5795c21c..fb19ed996a 100644 --- a/src/ol/proj.js +++ b/src/ol/proj.js @@ -171,7 +171,7 @@ export function get(projectionLike) { * Get the resolution of the point in degrees or distance units. * For projections with degrees as the unit this will simply return the * provided resolution. For other projections the point resolution is - * by default estimated by transforming the 'point' pixel to EPSG:4326, + * by default estimated by transforming the `point` pixel to EPSG:4326, * measuring its width and height on the normal sphere, * and taking the average of the width and height. * A custom function can be provided for a specific projection, either diff --git a/src/ol/renderer/canvas/TileLayer.js b/src/ol/renderer/canvas/TileLayer.js index b81eb9f8ae..91fe10f907 100644 --- a/src/ol/renderer/canvas/TileLayer.js +++ b/src/ol/renderer/canvas/TileLayer.js @@ -671,7 +671,7 @@ class CanvasTileLayerRenderer extends CanvasLayerRenderer { * @param {import("../../proj/Projection.js").default} projection Projection. * @param {import("../../extent.js").Extent} extent Extent. * @param {number} currentZ Current Z. - * @param {number} preload Load low resolution tiles up to 'preload' levels. + * @param {number} preload Load low resolution tiles up to `preload` levels. * @param {function(import("../../Tile.js").default):void} [opt_tileCallback] Tile callback. * @protected */ diff --git a/src/ol/reproj/Triangulation.js b/src/ol/reproj/Triangulation.js index 15dfacdb13..bd1350a999 100644 --- a/src/ol/reproj/Triangulation.js +++ b/src/ol/reproj/Triangulation.js @@ -479,7 +479,7 @@ class Triangulation { } /** - * Calculates extent of the 'source' coordinates from all the triangles. + * Calculates extent of the `source` coordinates from all the triangles. * * @return {import("../extent.js").Extent} Calculated extent. */ diff --git a/src/ol/xml.js b/src/ol/xml.js index feb9cc5191..20960ba670 100644 --- a/src/ol/xml.js +++ b/src/ol/xml.js @@ -289,7 +289,7 @@ export function makeChildAppender(nodeWriter, opt_this) { /** * Create a serializer that calls the provided `nodeWriter` from * {@link module:ol/xml.serialize}. This can be used by the parent writer to have the - * 'nodeWriter' called with an array of values when the `nodeWriter` was + * `nodeWriter` called with an array of values when the `nodeWriter` was * designed to serialize a single item. An example would be a LineString * geometry writer, which could be reused for writing MultiLineString * geometries.