Skip to content

Commit 494bd0b

Browse files
[All hosts] (UI/UX) Fix typo (#5458)
1 parent 876f237 commit 494bd0b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/design/keyboard-shortcuts.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Custom keyboard shortcuts in Office Add-ins
33
description: Learn how to add custom keyboard shortcuts, also known as key combinations, to your Office Add-in.
4-
ms.date: 09/23/2025
4+
ms.date: 11/06/2025
55
ms.topic: how-to
66
ms.localizationpriority: medium
77
---
@@ -363,13 +363,13 @@ The localization resource file, which is also JSON-formatted, has a top-level `r
363363
364364
### Specify the localization resource file in the manifest
365365
366-
Use the `ResourceUrl` attribute of the [ExtendedOverrides](/javascript/api/manifest/extendedoverrides) element to point Microsoft 365 to the localization resource file. The following is an example.
366+
Use the `ResourcesUrl` attribute of the [ExtendedOverrides](/javascript/api/manifest/extendedoverrides) element to point Microsoft 365 to the localization resource file. The following is an example.
367367
368368
```xml
369369
...
370370
</VersionOverrides>
371371
<ExtendedOverrides Url="https://contoso.com/addin/shortcuts.json"
372-
ResourceUrl="https://contoso.com/addin/localization.json">
372+
ResourcesUrl="https://contoso.com/addin/localization.json">
373373
</ExtendedOverrides>
374374
</OfficeApp>
375375
```

0 commit comments

Comments
 (0)