Skip to content

Commit 3a8a5b7

Browse files
committed
Merge branch 'master' into live
2 parents 3abf389 + 6e4bad7 commit 3a8a5b7

File tree

4 files changed

+32
-30
lines changed

4 files changed

+32
-30
lines changed

docs/sp-add-ins/sharepoint-add-ins.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ There are two basic kinds of SharePoint Add-ins — SharePoint-hosted and provid
2424

2525

2626

27-
- **A SharePoint Add-in is a self-contained pieces of functionality** that extends the capabilities of SharePoint websites to solve a well-defined business problem.
27+
- **A SharePoint Add-in is a self-contained piece of functionality** that extends the capabilities of SharePoint websites to solve a well-defined business problem.
2828

2929

30-
- **Add-ins don't have custom code that runs on the SharePoint servers**. Instead, all custom logic moves "up" to the cloud, or "down" to client computers, or "over" to an on-premise server that is outside the SharePoint farm or SharePoint Online subscription. Keeping custom code off SharePoint servers provides reassurance to SharePoint administrators that the add-in can't harm their servers or reduce the performance of their SharePoint Online websites.
30+
- **Add-ins don't have custom code which runs on SharePoint servers**. Instead, all custom logic moves "up" to the cloud, or "down" to client computers, or "over" to an on-premises server that is outside the SharePoint farm or SharePoint Online subscription. Keeping custom code off SharePoint servers provides reassurance to SharePoint administrators that the add-in can't harm their servers or reduce the performance of their SharePoint Online websites.
3131

3232

3333
- **Business logic in a SharePoint Add-in can access SharePoint data through one of the several client APIs included in SharePoint**. Which API you use for your add-in depends on certain other design decisions you make.
@@ -36,7 +36,7 @@ There are two basic kinds of SharePoint Add-ins — SharePoint-hosted and provid
3636
- **Almost all major types of SharePoint components can be part of a SharePoint Add-in**, including pages, lists, workflows, custom content types, list templates, Web Parts, and more.
3737

3838

39-
- **The SharePoint websites where SharePoint Add-ins are installed, and from which users launch them, are called host webs.** The SharePoint components, however, are generally in a special child web of the host web called theadd-in web.
39+
- **The SharePoint websites where SharePoint Add-ins are installed, and from which users launch them, are called host webs.** The SharePoint components, however, are generally in a special child web of the host web called the add-in web.
4040

4141

4242
- **SharePoint Add-ins can fit into a SharePoint website in several ways**:
@@ -81,7 +81,7 @@ You can distribute an add-in package in two ways:
8181

8282

8383

84-
- **To an organization's add-in catalog**, which is a dedicated SharePoint site collection in the SharePoint Online subscription or on-premise farm. This method is used when the add-in is custom-made for a particular organization.
84+
- **To an organization's add-in catalog**, which is a dedicated SharePoint site collection in the SharePoint Online subscription or on-premises farm. This method is used when the add-in is custom-made for a particular organization.
8585

8686

8787
- **To the [Office Store](https://store.office.com/appshome.aspx?productgroup=SharePoint)**. The store handles the marketing process for you, from discovery to purchase to updates. Microsoft has a **Seller Dashboard** to help you sell add-ins through the Office Store.

docs/spfx/web-parts/guidance/call-microsoft-graph-from-your-web-part.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ AuthenticationContext.prototype._renewToken = function (resource, callback) {
126126
this._renewTokenSuper(resource, callback);
127127
var _renewStates = this._getItem('renewStates');
128128
if (_renewStates) {
129-
_renewStates = _renewStates.split(';');
129+
_renewStates = _renewStates.split(',');
130130
}
131131
else {
132132
_renewStates = [];
@@ -256,4 +256,4 @@ Because client-side applications are incapable of securely storing secrets, and
256256

257257
## More information
258258

259-
- [Authentication Scenarios for Azure AD](https://Azure.microsoft.com/en-us/documentation/articles/active-directory-authentication-scenarios/)
259+
- [Authentication Scenarios for Azure AD](https://Azure.microsoft.com/en-us/documentation/articles/active-directory-authentication-scenarios/)

0 commit comments

Comments
 (0)