Skip to content

Commit 6d968ff

Browse files
committed
2 parents 6bb588b + f89297e commit 6d968ff

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/features/hub-site/hub-site-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ For more information about creating hub sites, see [Create SharePoint hub sites
1818

1919
- You can create up to 100 hub sites for an organization.
2020

21-
- If you set up [SharePoint Multi-Geo](../../solution-guidance/multigeo-introduction.md) for your organization, only sites within the same geographical ___location can be associated with a hub site.
21+
- If you set up [SharePoint Multi-Geo](../../solution-guidance/multigeo-introduction.md) for your organization, any geo ___location where the SharePoint workload is available can be associated with a hub site.
2222

2323
- When users associate their sites with a hub site, it doesn't impact the permissions of either the hub site or the associated sites. It's important to ensure that all users you allow to associate sites to the hub site have permission to the hub site.
2424

docs/general-development/user-segmentation-in-sharepoint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Figure 1 shows the basic steps to add user segmentation functionality to your Sh
7979
A term is a word or a phrase that can be associated with an item in SharePoint. Aterm set is a collection of related terms. For more information, see [Overview of managed metadata in SharePoint](http://technet.microsoft.com/en-us/library/ee424402.aspx). You can create term sets either through the SharePoint Term Store Management Tool, or programmatically.
8080

8181
> [!NOTE]
82-
> See the following topics for detailed instructions on how to use the Term Store Management Tool to create your term set:> [Set up a new term set](http://office.microsoft.com/en-us/sharepoint-help/set-up-a-new-term-set-HA102922634.aspx)> [Create and manage terms in a term set](http://office.microsoft.com/en-us/office365-sharepoint-online-enterprise-help/create-and-manage-terms-in-a-term-set-HA102771989.aspx)
82+
> See the following topics for detailed instructions on how to use the Term Store Management Tool to create your term set:> [Set up a new term set](https://docs.microsoft.com/en-us/sharepoint/set-up-new-term-set)> [Create and manage terms in a term set](https://docs.microsoft.com/en-us/sharepoint/create-and-manage-terms)
8383
8484

8585

docs/sp-add-ins/working-with-folders-and-files-with-rest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ headers:
348348
- [REST API reference and samples](https://msdn.microsoft.com/library)
349349
- [Upload a file by using the REST API and jQuery](upload-a-file-by-using-the-rest-api-and-jquery.md)
350350
- [SharePoint-Add-in-REST-OData-BasicDataOperations](https://github.com/OfficeDev/SharePoint-Add-in-REST-OData-BasicDataOperations)
351-
- [SharePoint: Perform basic data access operations on files and folders by using REST](http://code.msdn.microsoft.com/SharePoint-Perform-ab9c4ae5)
351+
- [SharePoint: Perform basic data access operations on files and folders by using REST](https://code.msdn.microsoft.com/sharepoint-2013-perform-ab9c4ae5)
352352
- [Secure data access and client object models for SharePoint Add-ins](secure-data-access-and-client-object-models-for-sharepoint-add-ins.md)
353353
- [Work with external data in SharePoint](work-with-external-data-in-sharepoint.md)
354354
- [OData resources](get-to-know-the-sharepoint-rest-service.md#odata-resources)

docs/spfx/web-parts/get-started/hosting-webpart-from-office-365-cdn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ You can also follow these steps by watching this video on the SharePoint PnP You
120120

121121
The default value for the **includeClientSideAssets** is `true`, which means that static assets are packaged automatically inside of the *.sppkg* files, and you do not need to separately host your assets from an external system.
122122

123-
Do **not** change this setting for this exerice, so that assets are automatically hosted when solution is deployed to your tenant.
123+
Do **not** change this setting for this exercise, so that assets are automatically hosted when solution is deployed to your tenant.
124124

125125
If *Office 365 CDN* is enabled, it is used automatically with default settings. If *Office 365 CDN* is not enabled, assets are served from the app catalog site collection. This means that if you leave the **includeClientSideAssets** setting `true`, your solution assets are automatically hosted in the tenant.
126126

docs/spfx/web-parts/guidance/tutorial-share-data-between-web-parts-global-variable.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export interface IDocument {
200200
import styles from './RecentDocuments.module.scss';
201201
import { IRecentDocumentsProps } from './IRecentDocumentsProps';
202202

203-
export default class RecentDocuments extends React.Component<IRecentDocumentsProps, void> {
203+
export default class RecentDocuments extends React.Component<IRecentDocumentsProps, any> {
204204
public render(): React.ReactElement<IRecentDocumentsProps> {
205205
const documents: JSX.Element[] = this.props.documents.map((document: IDocument, index: number, array: IDocument[]): JSX.Element => {
206206
return (
@@ -515,7 +515,7 @@ The Recent Document web part displays information about the most recently modifi
515515
import styles from './RecentDocument.module.scss';
516516
import { IRecentDocumentProps } from './IRecentDocumentProps';
517517

518-
export default class RecentDocument extends React.Component<IRecentDocumentProps, void> {
518+
export default class RecentDocument extends React.Component<IRecentDocumentProps, any> {
519519
public render(): React.ReactElement<IRecentDocumentProps> {
520520
const document: IDocument = this.props.document;
521521

0 commit comments

Comments
 (0)