Skip to content

Commit 59d9198

Browse files
andrewconnellVesaJuvonen
authored andcommitted
Multiple updates to docs fixing typos, broken links & clarifications (SharePoint#3421)
* docfix for code exception (issue1536) - fixes SharePoint#1536 * doc clarification fix (issue1552) - previous doc was unclear what page the user was on - updated doc to be more generic and not such a specific exp as UX changes over time - fixes SharePoint#1552 * link fixup (issue2068) - update link to working & relevant MVA course - fixes SharePoint#2068 * docfix for correct SPFx version (issue SharePoint#3315) - updated doc to reference SPFx 1.6 instead of 1.4.1 as the code snippets in the doc are only relevant to the GA of `MSGraphClient` - fixes SharePoint#3315 * linkfix (issue 3400) - fix broken link - fixes SharePoint#3400
1 parent fdf4bde commit 59d9198

5 files changed

+7
-7
lines changed

docs/general-development/create-sharepoint-no-code-solutions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The following articles describe how to create no-code solutions and provide link
3333
|**Article**|**Description**|
3434
|:-----|:-----|
3535
| [SharePoint Composites Handbook](sharepoint-composites-handbook.md) <br/> |Provides in-depth guidance to help you learn how to create a no-code solution. <br/> |
36-
| [No-code solutions using SharePoint Composites](http://technet.microsoft.com/en-us/sharepoint/dn594430) <br/> |Provides links to many practical articles, walkthroughs, demos, virtual labs, and other formats that show how to create no-code solutions. <br/> |
36+
| [No-code solutions using SharePoint Composites](create-sharepoint-no-code-solutions) <br/> |Provides links to many practical articles, walkthroughs, demos, virtual labs, and other formats that show how to create no-code solutions. <br/> |
3737
| [Save, download, and upload a SharePoint site as a template](save-download-and-upload-a-sharepoint-site-as-a-template.md) <br/> |Explains how to create site templates without using code so you can easily deploy no-code solutions. <br/> |
3838

3939

docs/sp-add-ins/complete-basic-operations-using-sharepoint-client-library-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ IEnumerable<SP.List> result = context.LoadQuery(web.Lists.Include( // For each l
225225
context.ExecuteQuery();
226226

227227
// Enumerate the result.
228-
foreach (List list in web.Lists)
228+
foreach (List list in result)
229229
{
230230
label1.Text = label1.Text + ", " + list.Title;
231231
}

docs/sp-add-ins/get-started-creating-sharepoint-hosted-sharepoint-add-ins.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ To get an Office 365 plan:
5252
- See the [Office 365 Developer Program documentation](https://docs.microsoft.com/en-us/office/developer-program/office-365-developer-program) for step-by-step instructions about how to join the Office 365 Developer Program and sign up and configure your subscription.
5353

5454
### Open your developer site
55-
56-
Select the **Build Add-ins** link in the upper-left corner of the page to open your developer site. You should see a site that looks like the one in the following figure. The **Add-ins in Testing** list on the page confirms that the website was made with the SharePoint Developer Site template. If you see a regular team site instead, wait a few minutes and then restart your site.
55+
56+
In a browser, navigate to the SharePoint site collection you created when you setup your Office 365 developer subscription. (*If you don't have a site, follow the instructions here*). You should see a site that looks like the one in the following figure. The **Add-ins in Testing** list on the page confirms that the website was made with the SharePoint Developer Site template. If you see a regular team site instead, wait a few minutes and then restart your site.
5757

5858
> [!NOTE]
5959
> Make a note of the site's URL; it's used when you create SharePoint Add-in projects in Visual Studio.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,5 +145,5 @@ Ready to get started?
145145
146146
## See also
147147

148-
- [Developing Microsoft SharePoint Server 2013 Core Solutions Jump Start](http://www.microsoftvirtualacademy.com/training-courses/developing-microsoft-sharepoint-server-core-solutions-jump-start)
148+
- [Microsoft Virual Academy: Getting Started with SharePoint Add-Ins](https://mva.microsoft.com/en-US/training-courses/getting-started-with-sharepoint-addins-14053)
149149
- [SharePoint glossary](../general-development/sharepoint-glossary.md)

docs/spfx/use-msgraph.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ When building SharePoint Framework solutions, you can easily connect to the Micr
1212

1313
## MSGraphClient overview
1414

15-
**MSGraphClient** is a new HTTP client introduced in SharePoint Framework v1.4.1 that simplifies connecting to the Microsoft Graph inside SharePoint Framework solutions. **MSGraphClient** wraps the existing [Microsoft Graph JavaScript Client Library](https://www.npmjs.com/package/@microsoft/microsoft-graph-client), offering developers the same capabilities as when using the client library in other client-side solutions.
15+
**MSGraphClient** is a new HTTP client introduced in SharePoint Framework v1.6.0 that simplifies connecting to the Microsoft Graph inside SharePoint Framework solutions. **MSGraphClient** wraps the existing [Microsoft Graph JavaScript Client Library](https://www.npmjs.com/package/@microsoft/microsoft-graph-client), offering developers the same capabilities as when using the client library in other client-side solutions.
1616

1717
While you could use the Microsoft Graph JavaScript Client Library in your solution directly, **MSGraphClient** handles authenticating against the Microsoft Graph for you, which allows you to focus on building your solution.
1818

1919
## Use the MSGraphClient in your solution
2020

2121
> [!NOTE]
22-
> The **MSGraphClient** is available only in projects built using SharePoint Framework v1.4.1 and later. While the **MSGraphClient** is explained in this article by using a client-side web part, you can also use it in SharePoint Framework Extensions.
22+
> The **MSGraphClient** is available only in projects built using SharePoint Framework v1.6.0 and later. While the **MSGraphClient** is explained in this article by using a client-side web part, you can also use it in SharePoint Framework Extensions.
2323
2424
1. To use the **MSGraphClient** in your SharePoint Framework solution, add the following `import` clause in your main web part file:
2525

0 commit comments

Comments
 (0)