本文介绍了我如何在www.dartlang.org上贡献Dart文档?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我在www.dartlang.org上发现拼写错误时,我该怎么办?

When I find a typo on www.dartlang.org, what should I do? Should I file a bug, fix it somehow, notify someone, or what?

推荐答案

您可以随时以。

或者,由于www.dartlang.org是开源的,你可以提供修复。很容易!

Or, since www.dartlang.org is open source, you can contribute the fix. It's easy!


  1. 在。

  2. 前往。

  3. 浏览到您要更改的文件。例如,如果您在中发现错字,则请访问,而不是编辑这些文件。

  4. 要测试格式更改,您可以克隆并构建dart-lang / dartlang.org项目。

  5. 如果您有dart-lang / dartlang的本地克隆.org,代替GitHub的审核系统,您可以使用Chromium审核系统和 。第一次,使用 git cl config 将Rietveld服务器设置为。要上传您的更改列表,请使用 git cl上传。要提交更改(如果您是提交者),请使用 git cl push

    • Once your change is accepted, it will appear on dartlang.org the next time we update the site. (This might take a few days.)
    • A few files on dartlang.org are generated. Instead of editing these files, create an issue.
    • To test formatting changes, you can clone and build the dart-lang/dartlang.org project.
    • If you have a local clone of dart-lang/dartlang.org, then instead of GitHub's review system you can use the Chromium review system and depot_tools. The first time, use git cl config to set the Rietveld server to https://chromiumcodereview.appspot.com. To upload your change list, use git cl upload. To commit your changes (if you're a committer), use git cl push.

    这篇关于我如何在www.dartlang.org上贡献Dart文档?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 02:18