Skip to content

Commit

Permalink
Merge pull request #9449 from camptocamp/fix-typo
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
llienher authored Aug 28, 2024
2 parents 03f6cc0 + a43c7b3 commit c76f0fc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@
},
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.20.13",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/plugin-syntax-object-rest-spread": "7.8.3",
"@babel/plugin-transform-spread": "7.20.7",
"@babel/plugin-transform-typescript": "7.20.13",
Expand Down Expand Up @@ -115,6 +115,7 @@
"babel-loader": "8.3.0",
"babel-plugin-angularjs-annotate": "0.10.0",
"bootstrap": "4.6.2",
"cheerio": "1.0.0-rc.12",
"chokidar": "3.5.3",
"chromatic": "6.15.0",
"co": "4.6.0",
Expand Down
4 changes: 2 additions & 2 deletions src/options.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// The MIT License (MIT)
//
// Copyright (c) 2020-2023 Camptocamp SA
// Copyright (c) 2020-2024 Camptocamp SA
//
// 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 Expand Up @@ -892,7 +892,7 @@ export function buildStyle(styleDescriptor) {

/**
* @typedef {Object} gmfShareOptions
* @property {boolean} [enableEmail=true] Enhable email.
* @property {boolean} [enableEmail=true] Enable email.
*/

/**
Expand Down
4 changes: 2 additions & 2 deletions srcapi/store/config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// The MIT License (MIT)
//
// Copyright (c) 2020-2023 Camptocamp SA
// Copyright (c) 2020-2024 Camptocamp SA
//
// 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 Expand Up @@ -1334,7 +1334,7 @@ export type gmfLayerTreeOptions = {

export type gmfShareOptions = {
/**
* Enhable email.
* Enable email.
*/
enableEmail?: boolean;
};
Expand Down

0 comments on commit c76f0fc

Please sign in to comment.