Skip to content

Commit

Permalink
Merge pull request #5119 from camptocamp/spell
Browse files Browse the repository at this point in the history
Some spell fixies
  • Loading branch information
sbrunner committed Sep 13, 2019
2 parents e527856 + 2479920 commit 358e9a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/guidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The purpose of this guideline is to help the developer to contribute in the
best way to `ngeo` and `gmf` cores.
It describe the golbal philosophy of `ngeo` design, and set base rules to
It describe the global philosophy of `ngeo` design, and set base rules to
apply when you want to add a new feature.

You are free to read and fork this library. But you must know that we have currently no time to handle issues
Expand Down
2 changes: 1 addition & 1 deletion utils/ios-overlap-fix.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(function() {
// Hack for ios Safari browser (UI overlapping on iOS 10)
var userAgent = window.navigator.userAgent;
var regEx = /iP(hone|od|ad)/;
var regEx = /(iPhone|iPod|iPad)/;
var iOS = regEx.test(userAgent);
var webkit = /WebKit/i.test(userAgent);
var chromeiOS = /(Chrome|CriOS|OPiOS)/i.test(userAgent);
Expand Down

0 comments on commit 358e9a3

Please sign in to comment.