File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
assets/javascripts/vendor Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 413413 // when the user next taps anywhere else on the page, new touchstart and touchend events are dispatched
414414 // with the same identifier as the touch event that previously triggered the click that triggered the alert.
415415 // Sadly, there is an issue on iOS 4 that causes some normal touch events to have the same identifier as an
416- // immediately preceeding touch event (issue #52), so this fix is unavailable on that platform.
416+ // immediately preceding touch event (issue #52), so this fix is unavailable on that platform.
417417 // Issue 120: touch.identifier is 0 when Chrome dev tools 'Emulate touch events' is set with an iOS device UA string,
418418 // which causes all touch events to be ignored. As this block only applies to iOS, and iOS identifiers are always long,
419419 // random integers, it's safe to to continue if the identifier is 0 here.
805805 }
806806 }
807807
808- // IE11: prefixed -ms-touch-action is no longer supported and it's recomended to use non-prefixed version
808+ // IE11: prefixed -ms-touch-action is no longer supported and it's recommended to use non-prefixed version
809809 // http://msdn.microsoft.com/en-us/library/windows/apps/Hh767313.aspx
810810 if ( layer . style . touchAction === 'none' || layer . style . touchAction === 'manipulation' ) {
811811 return true ;
Original file line number Diff line number Diff line change @@ -856,7 +856,7 @@ Raven.prototype = {
856856 } ,
857857
858858 _triggerEvent : function ( eventType , options ) {
859- // NOTE: `event` is a native browser thing, so let's avoid conflicting wiht it
859+ // NOTE: `event` is a native browser thing, so let's avoid conflicting with it
860860 var evt , key ;
861861
862862 if ( ! this . _hasDocument ) return ;
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ def call
8585 if initial_header . start_with? ( @section )
8686 sig . content = @section + '.' + sig . text
8787 end
88- # seperate the signatures on different lines.
88+ # separate the signatures on different lines.
8989 header . add_child "<br>"
9090 end
9191 end
Original file line number Diff line number Diff line change 11module Docs
22 class Pygame < UrlScraper
33 self . type = 'simple'
4- self . release = '1.9.4 '
4+ self . release = '1.9.6 '
55 self . base_url = 'https://www.pygame.org/docs/'
66 self . root_path = 'py-modindex.html'
77 self . links = {
@@ -14,7 +14,7 @@ class Pygame < UrlScraper
1414 options [ :only_patterns ] = [ /ref\/ / ]
1515
1616 options [ :attribution ] = <<-HTML
17- © Pygame Developpers .< br >
17+ © Pygame Developers .< br >
1818 Licensed under the GNU LGPL License version 2.1.
1919 HTML
2020
You can’t perform that action at this time.
0 commit comments