Skip to content

Commit

Permalink
chore(docs): update categories and title casing, fix broken links (#2995
Browse files Browse the repository at this point in the history
)

## Checklist

- [ ] Title matches [Winglang's style guide](https://docs.winglang.io/contributors/pull_requests#how-are-pull-request-titles-formatted)
- [ ] Description explains motivation and solution
- [ ] Tests added (always)
- [ ] Docs updated (only required for features)
- [ ] Added `pr/e2e-full` label if this feature requires end-to-end testing

*By submitting this pull request, I confirm that my contribution is made under the terms of the [Monada Contribution License](https://docs.winglang.io/terms-and-policies/contribution-license.html)*.
  • Loading branch information
Chriscbr committed Jun 21, 2023
1 parent 8530d22 commit 91fae05
Show file tree
Hide file tree
Showing 17 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/01-start-here/02-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ wing --version
## Wing IDE Extension

This extension adds syntax highlighting and other conveniences for the Wing language in [VSCode]. You don't *have*
to use it, but it's great. It's available through the [VSCode Marketplace](https://marketplace.visualstudio.com/items?itemName=Monada.vscode-wing).
to use it, but it's great. It's available through the VSCode Marketplace [here](https://marketplace.visualstudio.com/items?itemName=Monada.vscode-wing).

## Wing Console

Expand Down
4 changes: 2 additions & 2 deletions docs/01-start-here/04-run-locally.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Make sure you have [installed](./installation#wing-console) the Wing Console on
before getting started with this step.

If you are unable to install the Wing Console (e.g. you are running on Linux), you can
also test your application [programmatically](./simulator) or [deploy it to AWS](./aws).
also test your application against the [Wing simulator](../concepts/simulator) or [deploy it to AWS](./aws).

:::

Expand All @@ -25,7 +25,7 @@ We can use the Wing CLI to start the console with our newly created Wing source
wing it hello.w
```

The Wing Console will now compile hello.w source file to [the simulator target](./simulator#the-simulator-target-sim)
The Wing Console will now compile hello.w source file to [the simulator target](../concepts/simulator)
and load the application.

> The console will "hot reload" your app on each change in the source file parent directory.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Wing is designed around this new programming paradigm, which we call

> Taken from [Inflight Magazine](https://docs.winglang.io/blog/2022/12/28/magazine-001#diving-deeper-into-inflight-functions)
[Inflight functions](https://docs.winglang.io/concepts/inflights) are likely Wing's most significant
Inflight functions are likely Wing's most significant
language innovation. Since cloud applications are distributed systems and code is executed on
multiple machines across various compute platforms, our language needs first-class support for this
idea: code that executes in the cloud and interacts with managed services around it. This is where
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Compiler Targets
title: Compiler targets
id: compiler-targets
description: Wing compiler targets and provisioning engines
keywords: [Wing compiler targets, provisioning engines, multi-cloud]
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions docs/999-contributors/08-status.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: Project Status
id: status
keywords: [Wing project status, wing status, project status]
slug: /status
---

:::caution Maturity: Alpha
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ title: Which clouds are supported by Wing?
sidebar_label: Clouds
id: supported-clouds
keywords: [faq, supported clouds, winglang, Wing programming language, Wing language, AWS, GCP, Azure]
description: Build applications on any cloud with Winglang. Fully supported on AWS, partially supported on GCP and Azure. Check our roadmap for future updates!
---

Winglang was built from the ground up to make it an ideal choice for building applications on any cloud. Every app has access to the Wing SDK, a set of batteries-included resources that represent cloud services that are common to most major cloud providers for common use cases.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ title: Which cloud services are supported by Wing?
sidebar_label: Cloud Services
id: supported-services
keywords: [faq, supported service, winglang, Wing programming language, Wing language, AWS, GCP, Azure, Function, Bucket, Queue, Topic, API]
description: Build cloud applications with ease using Winglang. Explore the compatibility matrix to see supported services across different cloud providers.
---

Winglang was built from the ground up to make it an ideal choice for building applications on any cloud. Every app has access to the Wing SDK, a set of batteries-included resources that represent cloud services that are common to most major cloud providers for common use cases.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ There are several differences between Wing and Darklang, with the main distincti

With Wing, you can write code that is interoperable with JavaScript, allowing you to leverage the extensive NPM ecosystem. When you compile your code, it is transformed into JavaScript and Terraform, ensuring that your downstream tools remain the same as before. This approach helps developers to adopt Wing more easily and integrate it into their existing workflows.

To get a feel for the development experience with Wing, try our [playground](https://play.winglang.io/).
To get a feel for the development experience with Wing, try our [playground](https://play.winglang.io/).

0 comments on commit 91fae05

Please sign in to comment.